projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
12f8cfd
)
* lisp/obarray.el (obarray-size): Avoid compiler warning.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Sat, 18 Mar 2017 16:29:12 +0000
(12:29 -0400)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Sat, 18 Mar 2017 16:29:12 +0000
(12:29 -0400)
lisp/obarray.el
patch
|
blob
|
history
diff --git
a/lisp/obarray.el
b/lisp/obarray.el
index a4631859925d4b3d7d7ea744d354ec341e39aeef..b1160ebea43bf9c2b7571b864628985bd817e91e 100644
(file)
--- a/
lisp/obarray.el
+++ b/
lisp/obarray.el
@@
-37,9
+37,9
@@
(make-vector size 0)
(signal 'wrong-type-argument '(size 0)))))
-(defun obarray-size (ob
array
)
- "Return the number of slots of
OBARRAY
."
- (length ob
array
))
+(defun obarray-size (ob)
+ "Return the number of slots of
obarray OB
."
+ (length ob))
(defun obarrayp (object)
"Return t if OBJECT is an obarray."